home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DDJMAG / DDJ9203.ZIP / OOPASM.ZIP / OBJECTS.INC < prev    next >
Text File  |  1990-03-18  |  768b  |  28 lines

  1. COMMENT    %
  2. ============================================================================
  3. Data structure used to hold pointers to an object's ancestors, messages, and
  4. instance variables.
  5.  
  6. ===========================================================================%
  7. _Object    STRUC
  8.     Objects        DW    Nil
  9.     Messages    DW    Nil
  10.     Instances    DW    Nil
  11. _Object    ENDS
  12.  
  13.  
  14. COMMENT    %
  15. ============================================================================
  16. Data structure used to hold pointers to a message's Before, Primary, and
  17. After methods.
  18.  
  19. ===========================================================================%
  20. _Message    STRUC
  21.     Before        DW    Nil
  22.     Primary        DW    Nil
  23.     After        DW    Nil
  24. _Message    ENDS
  25.  
  26.  
  27.  
  28.